home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 1.7 KB | 62 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: SLMacOS.h
- // Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef SLMACOS_H
- #define SLMACOS_H
-
- #ifdef FW_BUILD_MAC
-
- #ifndef FWSTDDEF_H
- #include "FWStdDef.h"
- #endif
-
- //========================================================================================
- // Forward Declarations
- //========================================================================================
-
- struct FW_SRect;
-
- //========================================================================================
- // Global Mac Utility Functions
- //========================================================================================
-
- // Export or Import functions for CFM-68K [sfu]
-
- #if defined(FW_ODFLIB_IMPORT)
- #pragma import on
- #elif defined(FW_ODFLIB)
- #pragma export on
- #endif
-
- FW_EXTERN_C_BEGIN
-
- //----------------------------------------------------------------------------------------
- // Public API
- //
- GDHandle SL_API FW_MacGetMaxIntersectedDevice(WindowPtr windowPtr, FW_SRect& screenRect, FW_PlatformError* error);
- FW_PlatformError SL_API FW_MacZoomWindow(WindowPtr windowPtr, FW_Boolean zoomIn);
-
- //----------------------------------------------------------------------------------------
- // Private API
- //
- FW_Boolean SL_API FW_PrivMacBuildWindowRegions(WindowPtr windowPtr, FW_Boolean build, FW_PlatformError* error);
-
- FW_EXTERN_C_END
-
- // For CFM-68K [sfu]
-
- #if defined(FW_ODFLIB_IMPORT)
- #pragma import off
- #elif defined(FW_ODFLIB)
- #pragma export off
- #endif
-
- #endif
-
- #endif